Dashboard Temp Share Shortlinks Frames API

HTMLify

style.css
Views: 14 | Author: huxn-webdev
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #21d4fd, #b721ff);
}

section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

section h1 {
  font-size: 4rem;
  font-family: sans-serif;
  margin: 20px;
  color: #fff;
  text-transform: uppercase;
}

section #timer {
  font-size: 4rem;
  margin: 20px;
}

section button {
  background: transparent;
  border: none;
  padding: 10px 20px;
}

button {
  margin: 10px;
  color: #fff;
  width: 6rem;
  cursor: pointer;
}

#start-button {
  background: #71e027;
}

#stop-button {
  background: crimson;
}

#reset-button {
  background: darkblue;
}